<#
.SYNOPSIS
  A simple mathematical algorithim that generates the fibonnaci sequence for a given top integer.
.PARAMETER top
  Enter the desired top integer to get the fibonnaci sequence for the provided integer.
.INPUTS
  top - any integer.
.OUTPUTS
  Outputs to console.
.NOTES
  Version:        1.0
  Author:         @tstolswo
  Creation Date:  10/05/2019
  Purpose/Change: Initial script development
  
.EXAMPLE
  Get-FibonacciSequence 100
#>

Function Get-FibonacciSequence
{
 param([int]$top)
  For($a = $b = 1; $a -lt $top)
   {
    $a
    $a,$b = ($a + $a),$a
   }
}
